home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The PC-SIG Library 10
/
The PC-Sig Library - Shareware for the IBM PC and Compatibles (PC-SIG)(Tenth Edition Disks 1-2804)(1991).iso
/
PC_SIGCD
/
20
/
5
/
DISK2058.ZIP
/
UNFAST.EXE
/
SIEVE.F
< prev
next >
Wrap
Text File
|
1980-01-01
|
451b
|
29 lines
#short
const max=8191
print bios "Sieve - 25 iterations... ";
t1=timer
flags ? max
repeat 25
{
count=0
fill max/2 from flags with -1
for i=0 to max
if peekb (flags+i) then
{
prime = i*2+3
; print prime;" ";
k = i + prime
while k<=max
{
pokeb flags+k,0
k+=prime
}
count++
}
next i
}
t2=(timer-t1)*100/182
print bios count" primes in ";t2/10;".";t2 mod 10;" seconds."